home *** CD-ROM | disk | FTP | other *** search
- ' HiSoft BASIC Timing Test
- ' Copyright 1989 Antic Publishing
- LIBRARY "gemvdi","gemaes"
- WINDOW NAME 2," HiSoft Basic Timing Test "
- WINDOW OUTPUT 2
-
- DEF FNDifference(stp,start)
- FNDifference=(stp-start)*60 'in jiffies
- END DEF
-
- SUB Dummy
- 'nothing here!
- END SUB
-
- ' Compute the value of pi
- Tresult=1
- Tmstart=Timer
- FOR Lp=1 TO 500
- If INT(Lp/2)=Lp/2 THEN
- Mlt=1
- ELSE
- Mlt=-1
- END IF
- Tresult=Tresult+Mlt/(Lp*2+1)
- NEXT Lp
- Tpi=Tresult*4
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- LOCATE 3,1
- Print "the computed value of pi is ";Tpi
- Print "time necessary for pi calculation is ";Tmdiff
- LPrint "the computer value of pi is ";Tpi
- LPrint "time necessary for pi calculation is ";Tmdiff
- ' Compute the sine function in a loop
- Tresult=0
- Tmstart=Timer
- For Lp=1 TO 100
- Tresult=Tresult+Sin(Lp)
- Next Lp
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- Print "the computed sum of sines is ";Tresult
- Print "the time to compute the sum of sines ";Tmdiff
- LPrint "the computed sum of sines is ";Tresult
- LPrint "the time to compute the sum of sines ";Tmdiff
- ' compute the sum of square roots
- Tresult=0
- Tmstart=Timer
- For Lp=1 to 100
- Tresult=Tresult+Sqr(Lp)
- Next Lp
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- Print "sum of square roots is ";Tresult
- Print "time necessary to sum square roots is ";Tmdiff
- LPrint "sum of square roots is ";Tresult
- LPrint "time necessary to sum square roots is ";Tmdiff
- 'Count up using real number
- Result=0
- Tmstart=Timer
- For Lp=1 TO 5000
- INCR Result
- Next Lp
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- Print "time to count (real) to 5000 is ";Tmdiff
- Lprint "time to count (real) to 5000 is ";Tmdiff
- 'Count using integers
- Result%=0
- Tmstart=Timer
- For Lp%=1 to 5000
- INCR Result%
- Next Lp%
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- Print "time to count (integer) to 5000 is ";Tmdiff
- LPrint "time to count (integer) to 5000 is ";Tmdiff
- ' Lets call some procedures
- Tmstart=Timer
- For Lp=1 to 1000
- Dummy
- Next Lp
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- Print "time to go to a procedure 1000 times is ";Tmdiff
- Lprint "time to go to a procedure 1000 times is ";Tmdiff
- ' a little string handling!
- Dummy$=STRING$(255,"A")
- Tmstart=Timer
- For Lp=1 TO 255
- MID$(Xx$,Lp,1)=Mid$(Dummy$,Lp,1)
- MID$(Yy$,Lp,1)=Mid$(Dummy$,Lp,1)
- Next Lp
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- Print "time to do 512 string manipulations is ";Tmdiff
- Lprint "time to do 512 string manipulations is ";Tmdiff
- 'Some disk access, just for fun
- Tmstart=Timer
- OPEN "O",#1,"A:TEST"
- FOR Lp=1 TO 1000
- PRINT #1, Lp
- Next Lp
- Print #1, Dummy$
- Print #1, Dummy$
- Tmstop=Timer
- Tmdiff=FNDifference(Tmstop,Tmstart)
- Print "time to do disk access is ";Tmdiff
- Lprint "time to do disk access is ";Tmdiff
- Close #1